home *** CD-ROM | disk | FTP | other *** search
-
- if (document.layers)
- document.captureEvents(Event.KEYPRESS)
- function backhome(e){
- var targeturl="index.htm"
- if (document.layers){
- if (e.which==104||e.which==72)
- window.location=targeturl
- }
- else if (document.all){
- if (event.keyCode==104||event.keyCode==72)
- window.location=targeturl
- }
- }
- document.onkeypress=backhome